home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 376_04 / os2tool.003 / VIODEMO.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-08-30  |  926 b   |  36 lines

  1. @clear
  2. @echo  
  3. @echo Setting colors.
  4. @echo  
  5. @echo You can set the colors of the display with the COLOR command.
  6. @echo You can restore the displaycolors with the NORMAL command.
  7. @echo The CLEAR command clears the sceen, but it can also
  8. @echo be used to set the colors. Border colors can be set with the
  9. @echo BORDER command.
  10. @echo EXAMPLE
  11. @echo To set the display into blue letters on light grey, you could type:
  12. @echo COLOR blue on light_grey
  13. @pause
  14. COLOR blue on light_grey
  15. @pause
  16. @echo To clear the screen and set it to yellow on black type:
  17. @echo CLEAR yellow on black
  18. @pause
  19. clear yellow on black
  20. @pause
  21. @echo To restore the colors back to default values, you could type:
  22. @echo NORMAL
  23. @pause
  24. normal
  25. @pause
  26. @echo To set the border color to blue type:
  27. @echo BORDER blue
  28. @pause
  29. border blue
  30. @pause
  31. @echo Lets retore to black:
  32. @pause
  33. border black
  34. @echo That's all for setting colors.
  35. @pause
  36.